home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Applications / Demos_Demo folder / Demos_Info folder / Demos™ Demonstration / Demos Help / Demos Help.rsrc / STR#_2000.txt < prev    next >
Text File  |  1994-03-09  |  846b  |  23 lines

  1. This returns the square root of x, which must be positive or zero. For example, Sqr(Sqrt(12.34)) -> 12.34.
  2.  
  3. This returns the square of x.
  4.  
  5. This returns the sine of x, assumed in degrees.
  6.  
  7. This returns the round value of x to the nearest integer. For example, Round(1.8) -> 2, and Round(1.499) -> 1.
  8.  
  9. This returns the logarithm of x to the base 10. Hence, Logten(10^12.34) -> 12.34.
  10.  
  11. This returns the natural logarithm of x. Hence, Ln(Exp(12.34)) -> 12.34.
  12.  
  13. This returns the factorial of x, which must be positive or zero.
  14.  
  15. This returns the exponential of x; i.e. e to the power of x.
  16.  
  17. This returns the cosine of x in degrees.
  18.  
  19. This returns the arctangent of x in degrees. For example, remembering the venerable trigonometric identity, Tan(x) = Sin(x)/Cos(x), we get Arctan(Sin(12.34)/Cos(12.34)) -> 12.34.
  20.  
  21. This returns the absolute value of x.
  22.  
  23.